From: Anthony PERARD Date: Mon, 6 Dec 2021 17:02:00 +0000 (+0000) Subject: tools/xl: Remove unnecessary -I. from CFLAGS X-Git-Tag: archive/raspbian/4.17.0-1+rpi1^2~33^2~1204 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e7fe314870442fb85f8ecfc0e0bc605dddcd75b1;p=xen.git tools/xl: Remove unnecessary -I. from CFLAGS GCC will search the directory where the source file is for quote-includes. Signed-off-by: Anthony PERARD Acked-by: Andrew Cooper --- diff --git a/tools/xl/Makefile b/tools/xl/Makefile index 656b21c7da..2e129f00e1 100644 --- a/tools/xl/Makefile +++ b/tools/xl/Makefile @@ -7,7 +7,7 @@ include $(XEN_ROOT)/tools/Rules.mk CFLAGS += -Werror -Wno-format-zero-length -Wmissing-declarations \ -Wno-declaration-after-statement -Wformat-nonliteral -CFLAGS += -I. -fPIC +CFLAGS += -fPIC CFLAGS += $(PTHREAD_CFLAGS) LDFLAGS += $(PTHREAD_LDFLAGS)